home *** CD-ROM | disk | FTP | other *** search
- /*
- DUFTP
- */
-
- // Global Variables
-
- #include <DULIB.H>
- #include <SETJMP.H>
- #include "globals.h"
- #include "ls2filel.h"
-
- char *initial_dir;
- jmp_buf recover_main;
- file_list *remote_directory;
- file_list *local_directory;
- char **remote_files; // Array of just the filenames of the remote files
- char **local_files; // Array of just the filenames of the local files
- short file_count; // How many files are there in the remote list?
- char current_local_path[FMSIZE]; // Where we are in the local filesystem
- short local_file_count; // Number of entries in the local filesystem
- char new_server_address[50]; // Address for a new server
- char new_server_login[50]; // Login for a new server
- char new_server_password[50]; // Password for a new server
- char new_server_path[FMSIZE]; // Initial path for a new server
-